{% extends 'dashboards/base_dashboard.html' %} {% load humanize %} {% block extra_head %} {% endblock %} {% block stats %}

Director General Dashboard

Generate Report
Department
{{ department.name }}
Team Members
{{ total_users }}
Pending Tasks
{{ pending_tasks }}
Total Tasks
{{ total_tasks }}
TaskFlow Overview
View All Tasks
Total Tasks
{{ total_tasks|default:0 }}
Completed Tasks
{{ completed_tasks|default:0 }}
In Progress
{{ in_progress_tasks|default:0 }}
Pending
{{ pending_tasks|default:0 }}
Task Status Distribution
Pending ({{ pending_tasks|default:0 }}) In Progress ({{ in_progress_tasks|default:0 }}) Completed ({{ completed_tasks|default:0 }})
Recent Tasks
New Task
{% for task in recent_tasks %} {% empty %} {% endfor %}
Title Assigned To Status Due Date
{{ task.title|truncatechars:30 }} {% if task.due_date < now.date and task.status != 'completed' %} Overdue {% endif %} {{ task.assigned_to.get_full_name|default:task.assigned_to.email }} {{ task.get_status_display }} {{ task.due_date|date:"M d, Y" }}
No tasks found
Recent Tasks in {{ department.name }}
{% for task in recent_tasks %} {% empty %} {% endfor %}
Title Section Assigned To Status Due Date
{{ task.title }} {{ task.assigned_to.department.name|default:"-" }} {{ task.assigned_to.get_full_name|default:task.assigned_to.email }} {{ task.get_status_display }} {{ task.due_date|date:"M d, Y" }}
No tasks found in your department
Heads of Sections
{% if user.department %} Add Head of Section {% endif %}
{% for head in heads_of_sections %} {% empty %} {% endfor %}
Name Email Section Actions
{{ head.get_full_name|default:head.username }} {{ head.email }} {{ head.department.name|default:"-" }} {% if user.is_staff or user.department %} {% else %} No actions available {% endif %}
No heads of sections found. {% if user.department %} Add a head of section. {% endif %}
{% endblock %} {% block extra_js %} {% endblock %}